home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / A.D. Software / OOFILE / Buildable, limited OOFILE / source / core / oofbool.hpp < prev    next >
Text File  |  1995-06-12  |  258b  |  14 lines

  1. #ifndef H_OOFbool
  2. #define H_OOFbool
  3.  
  4. //    F A K E   B O O L E A N S
  5. // this is for all compilers lacking the new bool data type
  6. #ifndef OOF_GCC
  7. typedef unsigned int bool;
  8.     #ifdef _Windows
  9.         const bool false = 0;
  10.         const bool true = 1;
  11.     #endif
  12. #endif
  13.  
  14. #endif